home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / SRC / MATH / MAKEFILE < prev    next >
Text File  |  1997-04-13  |  357b  |  18 lines

  1. all : math_bc.lib math_wc.lib
  2.  
  3. .asm.obj:
  4.   masm2obj $*
  5.  
  6. math_bc.obj : math_com.asm math_bc.asm ftoa.asm
  7.  
  8. math_wc.obj : math_com.asm math_wc.asm ftoa.asm
  9.  
  10. math_bc.lib : math_bc.obj
  11.   if exist math_bc.lib del math_bc.lib
  12.   lib math_bc +math_bc,nul
  13.  
  14. math_wc.lib : math_wc.obj
  15.   if exist math_wc.lib del math_wc.lib
  16.   lib math_wc +math_wc,nul
  17.  
  18.